home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / piranha.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  101 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10381);
  10.  script_bugtraq_id(1148);
  11.  script_version ("$Revision: 1.12 $");
  12.  script_cve_id("CAN-2000-0248");
  13.  name["english"] = "Piranha's RH6.2 default password";
  14.  name["francais"] = "Mot de passe par dΘfaut de pirhana sur RedHat 6.2";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. The 'piranha' package is installed on the remote host.
  19. This package, as it is distributed with Linux RedHat 6.2,
  20. comes with the login/password combination 'piranha/q'
  21. (or piranha/piranha)
  22.  
  23. An attacker may use it to reconfigure your Linux Virtual Servers
  24. (LVS).
  25.  
  26. Solution : upgrade the packages piranha-gui, piranha and piranha-docs to
  27.            version 0.4.13
  28.  
  29. Risk factor : High";
  30.  
  31.  
  32.  desc["francais"] = "
  33. Le package 'piranha' est installΘ sur l'hote distant.
  34. Ce package, tel qu'il est fourni avec la RedHat 6.2, est livrΘ
  35. avec la combinaison login/mot de passe par dΘfaut 'piranha/q'
  36. (ou 'piranha/piranha)
  37.  
  38. Un pirate peut l'utiliser pour reconfigurer vos serveurs virtuels
  39. linux (LVS).
  40.  
  41. Solution : upgradez les packages piranha-gui, piranha et piranha-docs
  42.            en la version 0.4.13
  43.  
  44. Facteur de risque : ElevΘ";       
  45.  
  46.  
  47.  script_description(english:desc["english"], francais:desc["francais"]);
  48.  
  49.  summary["english"] = "logs into the remote piranha subsystem";
  50.  summary["francais"] = "se log dans le sysΦme piranha distant";
  51.  
  52.  script_summary(english:summary["english"], francais:summary["francais"]);
  53.  
  54.  script_category(ACT_ATTACK);
  55.  
  56.  
  57.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  58.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  59.  family["english"] = "Gain root remotely";
  60.  family["francais"] = "Passer root α distance";
  61.  script_family(english:family["english"], francais:family["francais"]);
  62.  script_dependencie("http_version.nasl");
  63.  script_require_ports("Services/www", 80);
  64.  exit(0);
  65. }
  66.  
  67. #
  68. # The script code starts here
  69. #
  70.  
  71. include("http_func.inc");
  72. include("http_keepalive.inc");
  73.  
  74. function test_hole(auth, port)
  75. {
  76.  req = http_get(item:"/piranha/secure/control.php3?", port:port);
  77.  req = req - string("\r\n\r\n");
  78.  req = string(req, "\r\nAuthorization: Basic ", auth, "\r\n\r\n");
  79.  r = http_keepalive_send_recv(port:port, data:req);
  80.  if( r == NULL ) exit(0);
  81.  if("Piranha (Control/Monitoring)" >< r)
  82.     {
  83.       security_hole(port);
  84.       exit(0);
  85.     }
  86. }
  87.  
  88.  
  89.  
  90. port = get_http_port(default:80);
  91.  
  92.  
  93. if(get_port_state(port))
  94. {
  95.     if ( ! can_host_php(port:port) ) exit(0);
  96.     test_hole(auth:"cGlyYW5oYTpx", port:port);
  97.     test_hole(auth:"cGlyYW5oYTpwaXJhbmhh", port:port);
  98. }
  99.    
  100.  
  101.